home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / archives / com / internet / sting / sting.lzh / STING / dev-kit / header / portab.h < prev    next >
C/C++ Source or Header  |  1997-05-03  |  305b  |  19 lines

  1. /*
  2.  *   Header file for making the STinG header files work 
  3.  *      with various compilers.
  4.  *
  5.  *   Just  #include "portab.h"  before #include'ing the 
  6.  *      other header files ...
  7.  *
  8.  */
  9.  
  10. #ifndef __PUREC__
  11.  
  12. #ifdef LATTICE
  13. #define  cdecl  __stdargs
  14. #else
  15. #define  cdecl
  16. #endif
  17.  
  18. #endif
  19.